home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / New System Software Extensions / QuickDraw™ GX 1.1.2 / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / CustomWriter GX 1.0.3 ƒ / OldApp.a < prev    next >
Encoding:
Text File  |  1995-06-20  |  1.2 KB  |  49 lines  |  [TEXT/MPS ]

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        OldApp.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        Contains the jump table for the old-application compatibility
  8. ;        messages we override.
  9. ;
  10. ;    COPYRIGHT
  11. ;        Copyright © 1995 Apple Computer, Inc.
  12. ;        All rights reserved.
  13. ;    
  14. ;    Modification history
  15. ;        06/14/95 - Dave Hersey -    Version 1.0.3 to fix a bug in
  16. ;                                    CustomBufferingAndIO.c when creating
  17. ;                                    high-res PICTs, and to make the size
  18. ;                                    of buffers more flexible.
  19. ;
  20. ;        05/26/95 - Dave Hersey -    Version 1.0.2 to add the new 'outp'
  21. ;                                    desktop printer resource in NewApp.c.
  22. ;
  23. ;        05/03/95 - Dave Hersey -    Version 1.0.1 to fix some minor bugs in
  24. ;                                    CustomBufferingAndIO.c.
  25. ;
  26. ;        01/14/95 - Dave Hersey -    Created from the shell of a hollowed-out
  27. ;                                    ImageWriter driver.
  28. ;
  29. ;--------------------------------------------------------------------------------
  30.  
  31.                 CASE     OBJ
  32.                 STRING    ASIS
  33.  
  34. SD_JumpTable    PROC    EXPORT
  35.                 dc.l    0
  36.     
  37. ; Overrides for the compatibility messages we override
  38.  
  39.                 IMPORT    SD_ConvertPrintRecordTo
  40.                 JMP        SD_ConvertPrintRecordTo
  41.  
  42.                 IMPORT    SD_ConvertPrintRecordFrom
  43.                 JMP        SD_ConvertPrintRecordFrom
  44.  
  45.                 IMPORT    SD_PrValidate
  46.                 JMP        SD_PrValidate
  47.     
  48.     END
  49.